From: kfraser@localhost.localdomain Date: Mon, 2 Apr 2007 14:29:42 +0000 (+0100) Subject: xen: Fix x86/64 build. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15270^2~11 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=f4169cc8d905b5e06784b1146e86dfddd3d3002d;p=xen.git xen: Fix x86/64 build. Signed-off-by: Keir Fraser --- diff --git a/xen/include/asm-x86/processor.h b/xen/include/asm-x86/processor.h index 4c28e48414..2ee10b0a2d 100644 --- a/xen/include/asm-x86/processor.h +++ b/xen/include/asm-x86/processor.h @@ -413,9 +413,9 @@ static always_inline void __mwait(unsigned long eax, unsigned long ecx) struct tss_struct { unsigned short back_link,__blh; #ifdef __x86_64__ - u64 rsp0; - u64 rsp1; - u64 rsp2; + union { u64 rsp0, esp0; }; + union { u64 rsp1, esp1; }; + union { u64 rsp2, esp2; }; u64 reserved1; u64 ist[7]; u64 reserved2;